home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / YICN23.ZIP / INCLUDE / EVENT.H < prev    next >
C/C++ Source or Header  |  1992-11-19  |  389b  |  18 lines

  1. #ifndef EVENT.H
  2.  
  3. #define EVENT.H
  4.  
  5. #include "actor.h"
  6.  
  7. #define MAX_EVENTS 10
  8.  
  9. class event : public animactor
  10. {
  11. public:
  12.   void advance(void);
  13.   void addAt(int x, int y, int sqx, int sqy);
  14.   static animicon * eventIcons;
  15.   void assignEvent(byte icon_number, byte identity = 255);
  16.   static void loadEvent(int position, char far * filename, yakLib * myYakLib = NULL);
  17. };
  18. #endif